home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / sep91.zip / 9N09063A < prev    next >
Text File  |  1991-06-07  |  348b  |  25 lines

  1. /*
  2.  * asn1.h -- Header for ASN.1 functions.
  3.  */
  4.  
  5. #ifndef    _asn1_h
  6. #define    _asn1_h
  7.  
  8. /* Standard C only guarantees 6 character
  9.  * external names. */
  10.  
  11. #define show_value_notation    asnSVN
  12.  
  13. /* function prototypes */
  14.  
  15. char *
  16. show_value_notation(
  17. #ifdef __STDC__
  18.     char *,
  19.     size_t,
  20.     size_t
  21. #endif
  22. );
  23.  
  24. #endif  /* _asn_h */
  25.